Version

ObservableCollectionExtended<T> Class

An extended ObservableCollection that supports adding and removing multiple items at once.
Syntax
'Declaration
 
Public Class ObservableCollectionExtended(Of T) 
   Inherits System.Collections.ObjectModel.ObservableCollection(Of T)
public class ObservableCollectionExtended<T> : System.Collections.ObjectModel.ObservableCollection<T> 
Type Parameters
T
The type of item that the collection will contain. If T implements System.ComponentModel.INotifyPropertyChanged then the collection will hook the System.ComponentModel.INotifyPropertyChanged.PropertyChanged event of all objects added to the collection.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also